home *** CD-ROM | disk | FTP | other *** search
/ Ultra Pack / UltraComputing Partner Applications.iso / WWW / install.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1996-04-01  |  4KB  |  128 lines

  1. #! /bin/sh
  2. ####################################################################################
  3. #                                                                                  #
  4. #  Copyright (c) 1996, Sun Microsystems Computer Corporation, Mountain View, CA    #
  5. #                                                                                  #
  6. #                      All Rights Reserved                                         #
  7. #                                                                                  #
  8. # Sun Microsystems Computer Corporation disclaims all warranties with              #
  9. # regard to this software, including all implied warranties of merchantability     #
  10. # and fitness.  In no event will Sun Microsystems Inc., Sun Microsystems           #
  11. # Computer Corporation or any Sun Microsystems Inc. company, its employees         #
  12. # or agents be liable for direct, incidental or consequential damages              #
  13. # resulting from loss of data or business opportunities, resulting from the        #
  14. # Ultracomputing Demo CD, or any part of same, either alone or in conjunction      #
  15. # with other programs.                                                             #
  16. #                                                                                  #
  17. # The software contained on these discs is distributed as is, at no additional     #
  18. # charge. As such, it is excluded from any pre-existing customer service        #
  19. # or support agreements with Sun Microsystems. An email form is provided in        #
  20. # the main demo menu to direct comments, feedback and technical questions          #
  21. # relating strictly to Ultrapack, the demos and usage thereof.               #
  22. #                                                                                  #
  23. # install.sh:                                       #
  24. #                                                                                  #
  25. # Executable shell script for installing the UltraPack                   #
  26. #         SMCC Desktop Systems Engineering                   #
  27. #        March 1996                                  #
  28. #                                           #
  29. ####################################################################################
  30. #set -x
  31.  
  32. FALSE=0
  33. TRUE=1
  34.  
  35. if [ "$ULTRA_PACK_HOME" != "" ]; then
  36.     cd $ULTRA_PACK_HOME;
  37. else
  38.     echo "Please setenv ULTRA_PACK_HOME";
  39. fi
  40.  
  41. /bin/clear
  42. echo " "
  43. echo "Ultra Pack Partner Demo install utility..."
  44. echo " "
  45. echo " "
  46. echo " "
  47. echo "This utility will copy the contents of this CDROM to a directory"
  48. echo "which you have permission to write to. Once copied, you can run"
  49. echo "the demos from that directory. Note, for both the TCL/TK and the"
  50. echo "Faximum demos, you will still need to further install them. For"
  51. echo "more information, see the 'About' section of either demo..."
  52. echo
  53. echo " "
  54. echo "    1. Install UltraPack Partner demos (~186 Mbyte)"
  55. echo " "
  56. echo "    2. Quit"
  57. echo " "
  58. read reply
  59.  
  60. if [ "$reply" != "1" ]; then
  61.     echo " "
  62.     echo "Quitting..."
  63.     echo " "
  64.     sleep 1
  65.     exit;
  66. fi
  67.  
  68. echo " "
  69. echo "Enter path to install..."
  70. read instpath
  71.  
  72. if [ "$instpath" = "" ]; then
  73.     echo "Must specify a pathname";
  74.     echo "Exiting";
  75.     /usr/bin/sleep 2;
  76.     exit;
  77. fi
  78.  
  79. if [ ! -d $instpath ]; then
  80.     echo " ";
  81.     echo "Path does not exist, create (y/n)";
  82.     read reply;
  83.  
  84.     if [ "$reply" = "y" ] || ["$reply" = "Y" ] ; then
  85.         mkdir $instpath;
  86.     elif
  87.     [ "$reply" = "n" ] || ["$reply" = "N" ] ; then
  88.         echo "Exiting";
  89.         sleep 2;
  90.         exit;
  91.     fi
  92. fi
  93.  
  94. if [ ! -w $instpath ]; then
  95.     echo " ";
  96.     echo "Permission denied"
  97.     echo "Exiting ";
  98.     sleep 2;
  99.     exit;
  100. fi
  101.  
  102. /usr/bin/tar cvf - . | (cd $instpath; tar xf - )
  103.  
  104. tmpfil=/tmp/.iU_d_$$
  105. sed -e "s;/cdrom/cdrom0;$instpath;g"  $instpath/Caldera/Cameleo/bin/.CAS.config | sed -e "s;//;/;g" > $tmpfil
  106. mv $tmpfil $instpath/Caldera/Cameleo/bin/.CAS.config
  107. cp $instpath/Caldera/Cameleo/bin/.CAS.config $instpath/Caldera/Cameleo/lib/.CAS.config
  108.  
  109. sed -e "s;/cdrom/cdrom0;$instpath;g" -e "s;^#ULTRA_PACK_HOME=;ULTRA_PACK_HOME=;" $instpath/run_demo > $tmpfil
  110. mv $tmpfil $instpath/run_demo
  111. chmod 755 $instpath/run_demo
  112.  
  113. /bin/sleep 2
  114. /bin/clear
  115. echo " "
  116. echo "The UltraPack Partner demos have been successfully installed to:" 
  117. echo " "
  118. echo $instpath
  119. echo " "
  120. echo "To run the demo's, double click on the run_demo icon"
  121. echo "with File Manager in " $instpath
  122. echo " "
  123. echo "...or, to run from Unix command line, you need to include the path"
  124. echo $instpath "in your shell search path"
  125. echo " "
  126. echo "Press the <RETURN> key to exit install"
  127. read replay
  128.